home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{E112F284-62AB-11D1-A1FA-00C0DFE045F2}#1.1#0"; "ccrpani.ocx"
- Begin VB.Form Animate
- Caption = "File Download: VBCCRP Animation Control Demo"
- ClientHeight = 2028
- ClientLeft = 4680
- ClientTop = 4008
- ClientWidth = 5568
- LinkTopic = "Form1"
- MaxButton = 0 'False
- ScaleHeight = 2028
- ScaleWidth = 5568
- Begin Animation.ccrpAnimation ccrpAnimation
- Height = 732
- Left = 120
- Top = 120
- Width = 5352
- _ExtentX = 9440
- _ExtentY = 1291
- BackColor = -2147483644
- BorderStyle = 0
- Center = -1 'True
- End
- Begin VB.CommandButton Command1
- Caption = "Cancel"
- Height = 345
- Left = 4335
- TabIndex = 3
- Top = 1500
- Width = 1080
- End
- Begin VB.Label Label3
- BackStyle = 0 'Transparent
- Caption = "Filename from 111.11.111.11"
- Height = 255
- Left = 135
- TabIndex = 2
- Top = 1110
- Width = 3975
- End
- Begin VB.Label Label2
- BackStyle = 0 'Transparent
- Caption = "Saving:"
- Height = 255
- Left = 135
- TabIndex = 1
- Top = 870
- Width = 1890
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "Estimated Time Left: 1 hr 4 min 30 sec (400 kb copied)"
- Height = 255
- Left = 135
- TabIndex = 0
- Top = 1770
- Width = 3930
- End
- Attribute VB_Name = "Animate"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- 'Load AVI resource
- 'Note that you must pass App.hInstance as the 2nd parameter
- 'otherwise the control will not locate the resource correctly
- ccrpAnimation.OpenAVIResource 1, App.hInstance
- 'If you are loading from a file, no code is required.
- 'Simply set the Filename property and set AutoOpen and AutoPlay to true
- 'and the AVI will start playing when the control is initialised (when the form is loaded)
- End Sub
- Private Sub Command1_Click()
- End
- End Sub
-